Skip to main content

Handle Deposits JSON

POST 

/api/operator/DepositApprovalJson

An API call will be sent to an operator’s notification callback URL alerting them of pending deposits. After receiving this notification an operator will need to approve or reject the requested deposit.

This method is used to make an authenticated request to approve a specific deposit received via notification callback.

Example Scenario:

  1. End user makes a deposit on the VIP Connect web component.
  2. VIP Connect notifies the operator using the notification endpoint URL configured.
  3. Operator reviews the received deposit request.
  4. Operator calls deposit approval endpoint on VIP Connect.
  5. Operator receives successful response status.
info

No action needed to reject a deposit request. Operator can review and ignore the deposit notification received.

Request

Responses

API received the request and responded

Example Response

  {
"transactionId":"9f80db7112",
"amount":"10.33",
"transactionType":"deposit",
"timestamp":"2022-10-03T14:23:09.2188558+00:00",
"transactionResult":"Success"
}